home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Demos / Bowers Development / AppMaker 2.0b5 / Examples / TCL / AMReminder / AMReminderMain.cp < prev    next >
Encoding:
Text File  |  1996-03-19  |  304 b   |  15 lines  |  [TEXT/KAHL]

  1. /* AMReminderMain.cp -- main program */
  2. /* Created 01/01/95 12:01 PM by AppMaker */
  3.  
  4. #include "AMReminderApp.h"
  5.  
  6. extern    CApplication    *gApplication;
  7.  
  8. void main ()
  9. {
  10.     gApplication = new CAMReminderApp;
  11.     ((CAMReminderApp *) gApplication)->IAMReminderApp ();
  12.     gApplication->Run ();
  13.     gApplication->Exit ();
  14. }
  15.